home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-27 | 733 b | 28 lines | [TEXT/KAHL] |
- //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //| This file contains the interface to the CPoint class. A CPoint
- //| is a graphics primitive. It is a colored point.
- //|________________________________________________________________________________
-
- #pragma once
- #include "CPrimitive.h"
- #include <iostream.h>
-
- CLASS CPane;
-
- class CPPoint : public CPrimitive
- {
-
- public:
-
- long vertex_index; // The index of the vertex this point lies on
-
- void IPPoint(CList *colors);
- void Dispose(void);
- void Read(void);
- void Draw(RGBColor *override_color, Point **screen_vertices,
- Rect *clip_rect, Boolean fAntialias);
-
- friend istream& operator>> (istream& s, CPPoint& path);
-
- };
-